home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / ssl / misc / c_hash next >
Text File  |  2006-04-25  |  119b  |  10 lines

  1. #!/bin/sh
  2. # print out the hash values 
  3. #
  4.  
  5. for i in $*
  6. do
  7.     h=`openssl x509 -hash -noout -in $i`
  8.     echo "$h.0 => $i"
  9. done
  10.